home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / tagcalls / lowlevel.inc < prev    next >
Text File  |  1998-06-24  |  374b  |  19 lines

  1. pattern SetJoyPortAttrs(_portNumber, ...) is
  2.     push a6;
  3.     push.l ...;
  4.     safe d0.l:=_portNumber; a1:=sp;;
  5.     a6:=LowLevelBase; jsr [a6-132];
  6.     sp:=sp+countof(...)<<2;
  7.     pop a6;
  8. endp;                                                            # SETJOYPORTATTRS
  9.  
  10. pattern SystemControl( ...) is
  11.     push a6;
  12.     push.l ...;
  13.     a1:=sp;
  14.     a6:=LowLevelBase; jsr [a6-72];
  15.     sp:=sp+countof(...)<<2;
  16.     pop a6;
  17. endp;                                                            # SYSTEMCONTROL
  18.  
  19.